簡單的例子:
<pre class="c" name="code">
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<form onsubmit="alert($('input[name=radio1]:checked').val());return false;">
<input type="radio" name="radio1" value="1">1<br/>
<input type="radio" name="radio1" value="2">2<br/>
<input type="radio" name="radio1" value="3">3<br/>
<input type="submit">
</form>
謝謝fillano大大舉的例子,簡單又能說明。
邦友如果想試試看,本地端又沒有jQuery的檔案,可以指向下面的網址:
<pre class="c" name="code"><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>